home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / VBSamples / DirectInput / Scrawl / frmabout.frm (.txt) next >
Encoding:
Visual Basic Form  |  2001-10-08  |  3.0 KB  |  92 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About Scrawl"
  5.    ClientHeight    =   2340
  6.    ClientLeft      =   2340
  7.    ClientTop       =   1935
  8.    ClientWidth     =   4260
  9.    ClipControls    =   0   'False
  10.    LinkTopic       =   "Form2"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1615.11
  14.    ScaleMode       =   0  'User
  15.    ScaleWidth      =   4000.36
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   1  'CenterOwner
  18.    Begin VB.PictureBox picIcon 
  19.       AutoSize        =   -1  'True
  20.       ClipControls    =   0   'False
  21.       Height          =   540
  22.       Left            =   240
  23.       Picture         =   "frmAbout.frx":0000
  24.       ScaleHeight     =   337.12
  25.       ScaleMode       =   0  'User
  26.       ScaleWidth      =   337.12
  27.       TabIndex        =   1
  28.       Top             =   240
  29.       Width           =   540
  30.    End
  31.    Begin VB.CommandButton cmdOK 
  32.       Cancel          =   -1  'True
  33.       Caption         =   "OK"
  34.       Default         =   -1  'True
  35.       BeginProperty Font 
  36.          Name            =   "Arial"
  37.          Size            =   9.75
  38.          Charset         =   0
  39.          Weight          =   400
  40.          Underline       =   0   'False
  41.          Italic          =   0   'False
  42.          Strikethrough   =   0   'False
  43.       EndProperty
  44.       Height          =   345
  45.       Left            =   1500
  46.       TabIndex        =   0
  47.       Top             =   1560
  48.       Width           =   1260
  49.    End
  50.    Begin VB.Label lblDescription 
  51.       Caption         =   "Copyright 
  52. 1999 Microsoft Corporation"
  53.       ForeColor       =   &H00000000&
  54.       Height          =   330
  55.       Left            =   1050
  56.       TabIndex        =   2
  57.       Top             =   720
  58.       Width           =   2925
  59.    End
  60.    Begin VB.Label lblTitle 
  61.       Caption         =   "Scrawl (Visual Basic Version)"
  62.       BeginProperty Font 
  63.          Name            =   "Arial"
  64.          Size            =   9.75
  65.          Charset         =   0
  66.          Weight          =   400
  67.          Underline       =   0   'False
  68.          Italic          =   0   'False
  69.          Strikethrough   =   0   'False
  70.       EndProperty
  71.       ForeColor       =   &H00000000&
  72.       Height          =   345
  73.       Left            =   1050
  74.       TabIndex        =   3
  75.       Top             =   240
  76.       Width           =   2925
  77.    End
  78. Attribute VB_Name = "frmAbout"
  79. Attribute VB_GlobalNameSpace = False
  80. Attribute VB_Creatable = False
  81. Attribute VB_PredeclaredId = True
  82. Attribute VB_Exposed = False
  83. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  84. '  Copyright (C) 1999-2001 Microsoft Corporation.  All Rights Reserved.
  85. '  File:       FrmAbout.frm
  86. '  Content:    About box for scrawlb
  87. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  88. Option Explicit
  89. Private Sub cmdOK_Click()
  90.   Unload Me
  91. End Sub
  92.